public class Lab01_Task3 {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        String name = args[0];
        String place = args[1];
        String stdnumber = args[2];
        System.out.println("Hi "+name+", Your student number is "+stdnumber+" and how is "+place+"?");
    }
    
}